home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Washington_1988 / DevCon88.3 / Printer / include / macros.i
Encoding:
Text File  |  1992-08-27  |  1.7 KB  |  77 lines

  1. **********************************************************************
  2. *                                     *
  3. *   Copyright 1985, Commodore-Amiga Inc.   All rights reserved.         *
  4. *   No part of this program may be reproduced, transmitted,         *
  5. *   transcribed, stored in retrieval system, or translated into         *
  6. *   any language or computer language, in any form or by any         *
  7. *   means, electronic, mechanical, magnetic, optical, chemical,         *
  8. *   manual or otherwise, without the prior written permission of     *
  9. *   Commodore-Amiga Incorporated, 983 University Ave. Building #D,   *
  10. *   Los Gatos, California, 95030                     *
  11. *                                     *
  12. **********************************************************************
  13. *
  14. *    printer device macro definitions
  15. *
  16. *   Source Control
  17. *   --------------
  18. *   $Header: macros.i,v 1.0 87/08/21 17:32:11 daveb Exp $
  19. *
  20. *   $Locker:  $
  21. *
  22. *   $Log:    macros.i,v $
  23. *   Revision 1.0  87/08/21  17:32:11  daveb
  24. *   added to rcs
  25. *   
  26. *   Revision 25.2  85/06/16  01:04:51  kodiak
  27. *   *** empty log message ***
  28. *   
  29. *   Revision 25.1  85/06/14  04:06:25  kodiak
  30. *   6/14 morning checkin
  31. *   
  32. *   Revision 25.0  85/06/13  19:13:34  kodiak
  33. *   added to rcs
  34. *   
  35. *
  36. **********************************************************************
  37.  
  38. *------ external definition macros -----------------------------------
  39.  
  40. XREF_EXE    MACRO
  41.     XREF        _LVO\1
  42.         ENDM
  43.  
  44. XREF_DOS    MACRO
  45.     XREF        _LVO\1
  46.         ENDM
  47.  
  48. XREF_GFX    MACRO
  49.     XREF        _LVO\1
  50.         ENDM
  51.  
  52. XREF_ITU    MACRO
  53.     XREF        _LVO\1
  54.         ENDM
  55.  
  56. *------ library dispatch macros --------------------------------------
  57.  
  58. CALLEXE        MACRO
  59.         CALLLIB _LVO\1
  60.         ENDM
  61.  
  62. LINKEXE        MACRO
  63.         LINKLIB _LVO\1,_SysBase
  64.         ENDM
  65.  
  66. LINKDOS        MACRO
  67.         LINKLIB _LVO\1,_DOSBase
  68.         ENDM
  69.  
  70. LINKGFX        MACRO
  71.         LINKLIB _LVO\1,_GfxBase
  72.         ENDM
  73.  
  74. LINKITU        MACRO
  75.         LINKLIB _LVO\1,_IntuitionBase
  76.         ENDM
  77.